Wt examples 3.1.10
|
00001 // This may look like C code, but it's really -*- C++ -*- 00002 /* 00003 * Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium. 00004 * 00005 * See the LICENSE file for terms of use. 00006 */ 00007 #ifndef FILETREETABLE_H_ 00008 #define FILETREETABLE_H_ 00009 00010 #include <Wt/WTreeTable> 00011 00012 #include <boost/filesystem/path.hpp> 00013 00018 00033 class FileTreeTable : public Wt::WTreeTable 00034 { 00035 public: 00040 FileTreeTable(const boost::filesystem::path& path, 00041 Wt::WContainerWidget *parent = 0); 00042 }; 00043 00046 #endif // FILETREETABLE_H_