Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef Fireworks_Core_DataPath_h
#define Fireworks_Core_DataPath_h

class TString;

namespace fireworks {
  void setPath(TString& v);
  void getDecomposedVersion(const TString& s, int* out);
  int* supportedDataFormatsVersion();
  bool acceptDataFormatsVersion(TString& n);
}  // namespace fireworks

#endif