view interps/glass/klassi.h @ 7428:e617eba521ae

<b_jonas> slashlearn title/Titles J. K. Rowling had specifically denied on her webpage would be the titles of the sixth or seventh Harry Potter book are: Harry Potter and the{ Green Flame Torch, Mountain of Fantasy, Fortress of Shadows, Forest of Shadows, Graveyard of Memories, Pyramids of Furmat, Pillar of Storg\xc3\xa9, Toenail of Icklib\xc3\xb5gg}.
author HackBot
date Sun, 17 Apr 2016 21:18:43 +0000
parents 859f9b4339e6
children
line wrap: on
line source

/*
 * Copyright (c) 2005  Gregor Richards
 *
 * This file is part of Glass.
 * 
 * Glass 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 of the License, or
 * (at your option) any later version.
 * 
 * Glass 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 Glass; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef KLASSI_H
#define KLASSI_H

#include <map>
#include <string>
#include <vector>
using namespace std;

class Klass;
class Variable;

class KlassI {
    public:
    KlassI();
    ~KlassI();
    Klass *of;
    map<string,Variable *> vars;
    vector<KlassI *> localInstant;
};

#endif