Added project generator.

This commit is contained in:
rude
2009-08-06 21:19:01 +02:00
parent 797f536f05
commit b04b278cd0
34 changed files with 3687 additions and 4216 deletions
+10 -3
View File
@@ -27,23 +27,30 @@
namespace love
{
/**
* This class is a simple abstraction over
**/
class Data : public Object
{
public:
/**
* Destructor.
**/
virtual ~Data() {};
/**
* Gets a pointer to the data.
* Gets a pointer to the data. This pointer will obviously not
* be valid if the Data object is destroyed.
**/
virtual void * getData() const = 0 ;
/**
* Gets the size of the data buffer.
* Gets the size of the Data in bytes.
**/
virtual int getSize() const = 0;
}; // Data
} // love
#endif // LOVE_DATA_H
#endif // LOVE_DATA_H