This commit is contained in:
Eduardo Bart
2011-04-17 16:14:24 -03:00
93 changed files with 862 additions and 824 deletions

View File

@@ -22,7 +22,8 @@
*/
#include "color.h"
#include <prerequisites.h>
#include <util/color.h>
Color Color::white(0xFF, 0xFF, 0xFF, 0xFF);
Color Color::black(0x00, 0x00, 0x00, 0xFF);

View File

@@ -25,7 +25,7 @@
#ifndef COLOR_H
#define COLOR_H
#include "prerequisites.h"
#include <prerequisites.h>
typedef uint32 RGBA;

View File

@@ -21,8 +21,8 @@
* THE SOFTWARE.
*/
#include "logger.h"
#include "util.h"
#include <util/logger.h>
#include <util/util.h>
#include <iostream>
#include <cstdlib>

View File

@@ -25,7 +25,7 @@
#ifndef POINT_H
#define POINT_H
#include "prerequisites.h"
#include <prerequisites.h>
template <class T>
class TSize;

View File

@@ -25,7 +25,7 @@
#ifndef RECT_H
#define RECT_H
#include "prerequisites.h"
#include <prerequisites.h>
template <class T>
class TPoint;

View File

@@ -21,7 +21,8 @@
* THE SOFTWARE.
*/
#include "rsa.h"
#include <prerequisites.h>
#include <util/rsa.h>
Rsa::Rsa()
{

View File

@@ -24,7 +24,7 @@
#ifndef RSA_H
#define RSA_H
#include "prerequisites.h"
#include <prerequisites.h>
#include <gmp.h>

View File

@@ -25,8 +25,8 @@
#ifndef SIZE_H
#define SIZE_H
#include "prerequisites.h"
#include "point.h"
#include <prerequisites.h>
#include <util/point.h>
enum ESizeScaleMode {
IGNORE_ASPECT_RATIO,

View File

@@ -21,7 +21,7 @@
* THE SOFTWARE.
*/
#include "util.h"
#include <util/util.h>
#include <cstdio>
std::string vformat(const char *format, va_list args)

View File

@@ -25,7 +25,7 @@
#ifndef UTIL_H
#define UTIL_H
#include "logger.h"
#include <util/logger.h>
#include <stdarg.h>
#include <boost/lexical_cast.hpp>