forked from openkylin/bovo
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
|
/*******************************************************************
|
||
|
*
|
||
|
* Copyright 2007 Aron Boström <c02ab@efd.lth.se>
|
||
|
*
|
||
|
* Bovo is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2, or (at your option)
|
||
|
* any later version.
|
||
|
*
|
||
|
* Bovo is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with Bovo; see the file COPYING. If not, write to
|
||
|
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
||
|
* Boston, MA 02110-1301, USA.
|
||
|
*
|
||
|
********************************************************************/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @file ai.cc implementing the Ai class
|
||
|
*/
|
||
|
|
||
|
#include "ai.h"
|
||
|
#include "aron/aiaron.h"
|
||
|
#include "gabor/aigabor.h"
|
||
|
|
||
|
|
||
|
/** namespace for AI stuff */
|
||
|
namespace ai {
|
||
|
|
||
|
Ai::~Ai() = default;
|
||
|
|
||
|
} /* namespace ai */
|
||
|
|
||
|
|