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,10 @@
// Boost scoped_ptr_example_test main program -------------------------------//
#include "scoped_ptr_example.hpp"
int main()
{
example my_example;
my_example.do_something();
return 0;
}