Joined
Last Seen
-7 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: Usage: [Code=c++] DirTraveler traveler; vector<string>foo; traveler.travelDirectoryRecursive("bar", &foo); for (int i=0; i<foo.size(); ++i) cout << foo[i].c_str() << endl; [/code] DirTraveler.h [code=c++] #ifndef DIRTRAVELER_H #define DIRTRAVELER_H #include <string> #include <vector> using namespace std; /// Directory traveler (mostly used with zgui manager) class DirTraveler { public: DirTraveler(); virtual ~DirTraveler(); vector<string> travelDirectory(string directory); void … |
The End.