File: AboutCommand.hxx

package info (click to toggle)
oonsoo 1.2-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,604 kB
  • ctags: 422
  • sloc: cpp: 24,373; makefile: 82
file content (53 lines) | stat: -rw-r--r-- 1,334 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
///////////////////////////////////////////////////////////////////////////////
// $Id: AboutCommand.hxx,v 1.1 1995/01/08 06:39:14 bmott Exp $
///////////////////////////////////////////////////////////////////////////////
//
// AboutCommand.hxx - Command to tell the user about Oonsoo
//
//
// Bradford W. Mott
// Copyright (C) 1994
// December 12,1994
//
///////////////////////////////////////////////////////////////////////////////
// $Log: AboutCommand.hxx,v $
// Revision 1.1  1995/01/08  06:39:14  bmott
// Initial revision
//
///////////////////////////////////////////////////////////////////////////////

#ifndef ABOUTCOMMAND_HXX
#define ABOUTCOMMAND_HXX

#include "Command.hxx"
#include "CommandFlags.hxx"
#include "About.hxx"

class SpriteCollection;

class AboutCommand : public Command {
  private:
    SpriteCollection* mySpriteCollection;

  public:
    // Protected constructor to prevent instantiation
    AboutCommand(SpriteCollection* spriteCollection)
        : mySpriteCollection(spriteCollection)
    {};

    // Destructor
    virtual ~AboutCommand() {};

    // All I do is tell the application to terminate
    virtual void execute(void* argument)
    {
      if(!aboutCurrentlyDisplayedFlag)
      {
        new About(mySpriteCollection);
        aboutCurrentlyDisplayedFlag = 1;
      }
    }
};

#endif