aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/test/script/builtin-options.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/test/script/builtin-options.ixx')
-rw-r--r--libbuild2/test/script/builtin-options.ixx138
1 files changed, 0 insertions, 138 deletions
diff --git a/libbuild2/test/script/builtin-options.ixx b/libbuild2/test/script/builtin-options.ixx
index 55fd6d2..bdb95b4 100644
--- a/libbuild2/test/script/builtin-options.ixx
+++ b/libbuild2/test/script/builtin-options.ixx
@@ -158,111 +158,6 @@ namespace build2
{
namespace script
{
- // cleanup_options
- //
-
- inline const bool& cleanup_options::
- no_cleanup () const
- {
- return this->no_cleanup_;
- }
-
- // cat_options
- //
-
- // cp_options
- //
-
- inline const bool& cp_options::
- recursive () const
- {
- return this->recursive_;
- }
-
- inline const bool& cp_options::
- preserve () const
- {
- return this->preserve_;
- }
-
- // ln_options
- //
-
- inline const bool& ln_options::
- symbolic () const
- {
- return this->symbolic_;
- }
-
- // mkdir_options
- //
-
- inline const bool& mkdir_options::
- parents () const
- {
- return this->parents_;
- }
-
- // mv_options
- //
-
- inline const bool& mv_options::
- force () const
- {
- return this->force_;
- }
-
- // rm_options
- //
-
- inline const bool& rm_options::
- recursive () const
- {
- return this->recursive_;
- }
-
- inline const bool& rm_options::
- force () const
- {
- return this->force_;
- }
-
- // rmdir_options
- //
-
- inline const bool& rmdir_options::
- force () const
- {
- return this->force_;
- }
-
- // sed_options
- //
-
- inline const bool& sed_options::
- quiet () const
- {
- return this->quiet_;
- }
-
- inline const bool& sed_options::
- in_place () const
- {
- return this->in_place_;
- }
-
- inline const strings& sed_options::
- expression () const
- {
- return this->expression_;
- }
-
- inline bool sed_options::
- expression_specified () const
- {
- return this->expression_specified_;
- }
-
// set_options
//
@@ -283,39 +178,6 @@ namespace build2
{
return this->whitespace_;
}
-
- // sleep_options
- //
-
- // test_options
- //
-
- inline const bool& test_options::
- file () const
- {
- return this->file_;
- }
-
- inline const bool& test_options::
- directory () const
- {
- return this->directory_;
- }
-
- // touch_options
- //
-
- inline const string& touch_options::
- after () const
- {
- return this->after_;
- }
-
- inline bool touch_options::
- after_specified () const
- {
- return this->after_specified_;
- }
}
}
}