Moved check_args.cpp from src/core/ to src/.

This commit is contained in:
David Capello 2010-07-16 17:00:37 -03:00
parent f2f1bb26f2
commit 7fa04dddb2
4 changed files with 9 additions and 9 deletions

View File

@ -8,6 +8,7 @@ ASE = aseprite$(EXE)
COMMON_SOURCES = \
src/app.cpp \
src/ase_exception.cpp \
src/check_args.cpp \
src/console.cpp \
src/context.cpp \
src/gfxmode.cpp \
@ -91,7 +92,6 @@ COMMON_SOURCES = \
src/commands/fx/cmd_replace_color.cpp \
src/commands/fx/effectbg.cpp \
src/core/cfg.cpp \
src/core/check_args.cpp \
src/core/color.cpp \
src/core/config.cpp \
src/core/core.cpp \

View File

@ -21,12 +21,12 @@
#include <allegro.h>
#include <assert.h>
/* #include <allegro/internal/aintern.h> */
#include <memory>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <memory>
#include "jinete/jinete.h"
#include "jinete/jintern.h"
@ -35,11 +35,11 @@
#include "app.h"
#include "ase_exception.h"
#include "check_args.h"
#include "commands/commands.h"
#include "commands/params.h"
#include "console.h"
#include "core/cfg.h"
#include "core/check_args.h"
#include "core/core.h"
#include "core/drop_files.h"
#include "core/file_system.h"

View File

@ -21,10 +21,10 @@
#include "Vaca/Application.h"
#include "Vaca/String.h"
#include "core/core.h"
#include "core/check_args.h"
#include "core/cfg.h"
#include "check_args.h"
#include "console.h"
#include "core/cfg.h"
#include "core/core.h"
using namespace Vaca;
@ -141,7 +141,7 @@ void CheckArgs::usage(bool showHelp)
if (showHelp) {
// copyright
console.printf
("%s v%s | animated sprite editor\n%s\n\n",
("%s v%s | Allegro Sprite Editor | A pixel art program\n%s\n\n",
PACKAGE, VERSION, COPYRIGHT);
// usage

View File

@ -16,8 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef CORE_CHECK_ARGS_H_INCLUDED
#define CORE_CHECK_ARGS_H_INCLUDED
#ifndef CHECK_ARGS_H_INCLUDED
#define CHECK_ARGS_H_INCLUDED
#include "Vaca/String.h"
#include <vector>