Click here to Skip to main content
15,883,883 members
Articles / Desktop Programming / MFC

Tree Container Library

Rate me:
Please Sign up or sign in to vote.
4.85/5 (29 votes)
22 Aug 2007Zlib10 min read 228.1K   7.2K   111  
A generic template class library for storing data in a tree-like structure.
//#include "stdafx.h"
#include "basic_tree_tester.h"
#include "associative_tree_tester.h"
#include "child_iterator_tester.h"
#include "child_sequential_iterator_tester.h"
#include "descendant_iterator_tester.h"
#include "sequential_tree_tester.h"
#include "stl_algorithm_tester.h"
#include "unique_tree_tester.h"

int main(int argc, char* argv[])
{
	test_basic_tree();
	test_associative_tree();
	test_child_iterators();
	test_seq_tree_child_iterator();
	test_descendant_iterators();
	test_sequential_tree();
	test_unique_tree();
	test_stl_algorithms();

	return 0;
}


By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The zlib/libpng License



Comments and Discussions