diff --git a/src/data/card.hpp b/src/data/card.hpp index 765d357d..ba1cc350 100644 --- a/src/data/card.hpp +++ b/src/data/card.hpp @@ -9,7 +9,7 @@ // ----------------------------------------------------------------------------- : Includes -#include +#include #include class Game; diff --git a/src/data/field/image.hpp b/src/data/field/image.hpp index a0285d51..0212c254 100644 --- a/src/data/field/image.hpp +++ b/src/data/field/image.hpp @@ -50,7 +50,7 @@ class ImageValue : public Value { public: inline ImageValue(const ImageFieldP& field) : Value(field) {} - String filename; ///< Filename of the image (in the current package), or "" + FileName filename; ///< Filename of the image (in the current package), or "" virtual String toString() const; diff --git a/src/data/field/symbol.hpp b/src/data/field/symbol.hpp index abf49039..f57a42ec 100644 --- a/src/data/field/symbol.hpp +++ b/src/data/field/symbol.hpp @@ -65,7 +65,7 @@ class SymbolValue : public Value { inline SymbolValue(const SymbolFieldP& field) : Value(field) {} DECLARE_HAS_FIELD(Symbol) - String filename; ///< Filename of the symbol (in the current package) + FileName filename; ///< Filename of the symbol (in the current package) virtual String toString() const; diff --git a/src/data/format/apprentice.cpp b/src/data/format/apprentice.cpp new file mode 100644 index 00000000..5e85f472 --- /dev/null +++ b/src/data/format/apprentice.cpp @@ -0,0 +1,11 @@ +//+----------------------------------------------------------------------------+ +//| Description: Magic Set Editor - Program to make Magic (tm) cards | +//| Copyright: (C) 2001 - 2006 Twan van Laarhoven | +//| License: GNU General Public License 2 or later (see file COPYING) | +//+----------------------------------------------------------------------------+ + +// ----------------------------------------------------------------------------- : Includes + +#include + +// ----------------------------------------------------------------------------- : diff --git a/src/data/format/clipboard.cpp b/src/data/format/clipboard.cpp new file mode 100644 index 00000000..75a0f562 --- /dev/null +++ b/src/data/format/clipboard.cpp @@ -0,0 +1,83 @@ +//+----------------------------------------------------------------------------+ +//| Description: Magic Set Editor - Program to make Magic (tm) cards | +//| Copyright: (C) 2001 - 2006 Twan van Laarhoven | +//| License: GNU General Public License 2 or later (see file COPYING) | +//+----------------------------------------------------------------------------+ + +// ----------------------------------------------------------------------------- : Includes + +#include +#include +#include +#include +#include +#include