2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00
Files
python/example/store.h
nobody cc9aafb6d6 This commit was manufactured by cvs2svn to create tag
'before_adding_complex'.

[SVN r9301]
2001-02-21 00:40:58 +00:00

15 lines
248 B
C++

#ifndef STORE_H
#define STORE_H
class store
{
private:
store(const store&) { } // Disable the copy constructor.
int number;
public:
store(const int i) : number(i) { }
int recall() const { return number; }
};
#endif // STORE_H