16 lines
247 B
C++
16 lines
247 B
C++
/* The scully programming language.
|
|
*
|
|
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
|
|
* Licensed under the GNU GPL v2.
|
|
*/
|
|
|
|
#include "AST/Statement.h"
|
|
|
|
Statement::Statement() {
|
|
//
|
|
}
|
|
|
|
Statement::~Statement() {
|
|
//
|
|
}
|