2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-31 08:22:18 +00:00

This commit was manufactured by cvs2svn to create tag

'before_adding_complex'.

[SVN r9301]
This commit is contained in:
nobody
2001-02-21 00:40:58 +00:00
43 changed files with 2005 additions and 234 deletions

14
example/store.h Normal file
View File

@@ -0,0 +1,14 @@
#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