Tidy up vhdl_element.cc

This commit is contained in:
Nick Gasson 2008-06-03 17:43:54 +01:00
parent a09b4e3b92
commit f9e1289463
1 changed files with 0 additions and 23 deletions

View File

@ -26,8 +26,6 @@
#include <iostream> #include <iostream>
//////// HELPER FUNCTIONS ////////
static const int VHDL_INDENT = 2; // Spaces to indent static const int VHDL_INDENT = 2; // Spaces to indent
static int indent(int level) static int indent(int level)
@ -69,9 +67,6 @@ void emit_children(std::ofstream &of,
} }
} }
//////// ALL ELEMENTS ////////
void vhdl_element::set_comment(std::string comment) void vhdl_element::set_comment(std::string comment)
{ {
comment_ = comment; comment_ = comment;
@ -85,9 +80,6 @@ void vhdl_element::emit_comment(std::ofstream &of, int level) const
} }
} }
//////// ENTITY ////////
vhdl_entity::vhdl_entity(const char *name, const char *derived_from, vhdl_entity::vhdl_entity(const char *name, const char *derived_from,
vhdl_arch *arch) vhdl_arch *arch)
: name_(name), arch_(arch), derived_from_(derived_from) : name_(name), arch_(arch), derived_from_(derived_from)
@ -112,9 +104,6 @@ void vhdl_entity::emit(std::ofstream &of, int level) const
arch_->emit(of, level); arch_->emit(of, level);
} }
//////// ARCHITECTURE ////////
vhdl_arch::vhdl_arch(const char *entity, const char *name) vhdl_arch::vhdl_arch(const char *entity, const char *name)
: name_(name), entity_(entity) : name_(name), entity_(entity)
{ {
@ -175,9 +164,6 @@ bool vhdl_arch::have_declared_component(const std::string &name) const
return false; return false;
} }
//////// PROCESS ////////
vhdl_process::vhdl_process(const char *name) vhdl_process::vhdl_process(const char *name)
: name_(name) : name_(name)
{ {
@ -211,9 +197,6 @@ void vhdl_process::emit(std::ofstream &of, int level) const
newline(of, level); newline(of, level);
} }
//////// COMPONENT INSTANTIATION ////////
vhdl_comp_inst::vhdl_comp_inst(const char *inst_name, const char *comp_name) vhdl_comp_inst::vhdl_comp_inst(const char *inst_name, const char *comp_name)
: comp_name_(comp_name), inst_name_(inst_name) : comp_name_(comp_name), inst_name_(inst_name)
{ {
@ -228,9 +211,6 @@ void vhdl_comp_inst::emit(std::ofstream &of, int level) const
newline(of, level); newline(of, level);
} }
//////// COMPONENT DECLARATIONS ////////
vhdl_component_decl::vhdl_component_decl(const char *name) vhdl_component_decl::vhdl_component_decl(const char *name)
: vhdl_decl(name) : vhdl_decl(name)
{ {
@ -259,9 +239,6 @@ void vhdl_component_decl::emit(std::ofstream &of, int level) const
of << "end component;"; of << "end component;";
} }
//////// WAIT STATEMENT ////////
void vhdl_wait_stmt::emit(std::ofstream &of, int level) const void vhdl_wait_stmt::emit(std::ofstream &of, int level) const
{ {
// TODO: There are lots of different types of `wait' // TODO: There are lots of different types of `wait'