Changeset 64 for cpp/gdk/genoconv.h
- Timestamp:
- 01/28/11 23:29:40 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/gdk/genoconv.h
r5 r64 1 // This file is a part of Framsticks GDK library.2 // Copyright (C) 2002-20 06Szymon Ulatowski. See LICENSE.txt for details.3 // Refer to http://www.frams .alife.pl/ for further information.1 // This file is a part of the Framsticks GDK library. 2 // Copyright (C) 2002-2011 Szymon Ulatowski. See LICENSE.txt for details. 3 // Refer to http://www.framsticks.com/ for further information. 4 4 5 5 #ifndef _GENCONV_H_ … … 11 11 #include "sstring.h" 12 12 13 #include <string> 14 #include <vector> 15 13 16 14 17 class GenoConvManager; … … 17 20 { 18 21 GenoConvManager *gcm; 22 std::vector<std::string> gcnames; 19 23 void freetab(); 20 24 public: … … 89 93 char *getPath(char in,char out,char *path,int maxlen,int *mapavailable=0); 90 94 char *getFormatPath(char in,char out,char *path,int maxlen,int *mapavailable=0); 95 /// returns the list of converters meeting the specified criteria 96 /// pass result=0 if you only need one result (by return value) 97 /// default criteria values mean "don't care", pass anything else to narrow your search 98 GenoConverter *findConverters(SListTempl<GenoConverter*>* result=0,char in=-1,char out=-1,int enabled=-1,char* name=0); 91 99 }; 92 100
Note: See TracChangeset
for help on using the changeset viewer.