Moved smart_ptr contents to subdirectories, switched to a local test/Jamfile.

[SVN r17042]
This commit is contained in:
Peter Dimov
2003-01-25 16:17:17 +00:00
parent d030182e87
commit abb0d9e725
20 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// Boost shared_ptr_example2_test main program ------------------------------//
#include "shared_ptr_example2.hpp"
int main()
{
example a;
a.do_something();
example b(a);
b.do_something();
example c;
c = a;
c.do_something();
return 0;
}