This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <ctime> | |
| #include <iterator> | |
| // old stuff | |
| template<typename DataType, int NumComponents, typename Derived> | |
| struct composite_base { | |
| typedef DataType value_type; | |
| static const int num_components = NumComponents; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <map> | |
| #include <sstream> | |
| #include <string> | |
| #include <iterator> | |
| template <class T, class C, class charT=char, class traits=std::char_traits<charT> > | |
| class ostream_cast_iterator : | |
| public std::iterator<std::output_iterator_tag, void, void, void, void> | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <vector> | |
| #include <iostream> | |
| #include <functional> | |
| #include <iterator> | |
| template <class Functor> | |
| class Not | |
| { | |
| public: | |
| Not(Functor & f) : func(f) {} |
NewerOlder