Prepare 1.0 alpha3 release.
[tagua/yd.git] / src / icslistener.h
blob50d6466ba93c47d4b55c3244850a6c2151310242
1 /*
2 Copyright (c) 2006 Paolo Capriotti <p.capriotti@gmail.com>
3 (c) 2006 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9 */
11 #ifndef ICSLISTENER_H
12 #define ICSLISTENER_H
14 #include "tagua.h"
16 class ICSListener {
17 public:
18 virtual ~ICSListener() { }
19 virtual void notifyStyle12(const class PositionInfo&, bool is_starting=false) = 0;
20 virtual void notifyPool(const class PoolInfo&) = 0;
21 virtual void notifyMoveList(int, AbstractPosition::Ptr, const class PGN&) = 0;
24 #endif // ICSLISTENER_H