Removed superfluous method decls
diff --git a/compiler/cpp/src/thrift/generate/t_delphi_generator.cc b/compiler/cpp/src/thrift/generate/t_delphi_generator.cc
index b6b3b28..a8ac506 100644
--- a/compiler/cpp/src/thrift/generate/t_delphi_generator.cc
+++ b/compiler/cpp/src/thrift/generate/t_delphi_generator.cc
@@ -114,7 +114,6 @@
void generate_xception(t_struct* txception) override;
void generate_service(t_service* tservice) override;
void generate_property(ostream& out, t_field* tfield, bool isPublic, bool is_xception);
- void generate_property_writer_(ostream& out, t_field* tfield, bool isPublic);
void generate_delphi_property(ostream& out,
bool struct_is_exception,
@@ -252,10 +251,6 @@
bool in_class = false,
bool is_result = false,
bool is_x_factory = false);
- void generate_delphi_struct_reader(std::ostream& out, t_struct* tstruct);
- void generate_delphi_struct_result_writer(std::ostream& out, t_struct* tstruct);
- void generate_delphi_struct_writer(std::ostream& out, t_struct* tstruct);
- void generate_delphi_struct_tostring(std::ostream& out, t_struct* tstruct);
void generate_function_helpers(t_function* tfunction);
void generate_service_interface(t_service* tservice);
@@ -329,7 +324,6 @@
std::ostream& local_vars);
void delphi_type_usings(std::ostream& out);
- std::string delphi_thrift_usings();
std::string type_name(t_type* ttype,
bool b_cls = false,
@@ -359,12 +353,6 @@
std::string prop_name(std::string name, bool is_xception = false, std::string prefix = "");
std::string constructor_param_name(string name);
- void write_enum(std::string line);
- void write_forward_decr(std::string line);
- void write_const(std::string line);
- void write_struct(std::string line);
- void write_service(std::string line);
-
std::string autogen_comment() override {
return std::string("(**\n") + " * Autogenerated by Thrift Compiler (" + THRIFT_VERSION + ")\n"
+ " *\n" + " * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING\n"