vrq
cspecify.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Copyright (C) 1997-2007, Mark Hummel
3  * This file is part of Vrq.
4  *
5  * Vrq is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * Vrq is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301 USA
19  *****************************************************************************
20  */
21 /******************************************************************************
22  *
23  *
24  * cspecify.hpp
25  * - class definition of specify block
26  * definition nodes
27  *
28  ******************************************************************************
29  */
30 
31 #ifndef CSPECIFY_HPP
32 #define CSPECIFY_HPP
33 
34 #include <stdio.h>
35 #include <vector>
36 #include "glue.h"
37 #include "cdecl.h"
38 #include "csymtab.h"
39 #include "cblock.h"
40 
41 
42 
43 
47 class CSpecify: public CBlock
48 {
49 public:
54  CSpecify( Coord_t* aLoc );
59  virtual void Dump( FILE* f );
60 };
61 
62 #endif // CSPECIFY_HPP
Declaration object for specify blocks.
Definition: cspecify.h:47
virtual void Dump(FILE *f)
Dump specifiy block info to file descriptor.
CSpecify(Coord_t *aLoc)
Create a specify block.
Structure to hold file coordinates.
Definition: cdecl.h:47
Declaration class for block constructs.
Definition: cblock.h:52