Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
Frida
Commits
adfb5980
Commit
adfb5980
authored
15 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
cleanup: remove very old style, unnecessary constructors
parent
d8518979
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pub/src/coord.cpp
+4
-26
4 additions, 26 deletions
pub/src/coord.cpp
pub/src/coord.h
+9
-14
9 additions, 14 deletions
pub/src/coord.h
with
13 additions
and
40 deletions
pub/src/coord.cpp
+
4
−
26
View file @
adfb5980
...
...
@@ -14,28 +14,6 @@ using namespace std;
#include
"coord.h"
#include
"gar.h"
CCoord
::
CCoord
(
void
)
{
}
CCoord
::
CCoord
(
const
char
*
nin
,
const
char
*
uin
)
{
name
=
string
(
nin
);
unit
=
string
(
uin
);
}
CCoord
::
CCoord
(
const
string
*
nin
,
const
string
*
uin
)
{
name
=
*
nin
;
unit
=
*
uin
;
}
CCoord
::
CCoord
(
const
string
nin
,
const
string
uin
)
{
name
=
nin
;
unit
=
uin
;
}
char
CoordDecode
(
const
string
&
resp
,
CCoord
*
rval
)
{
if
(
resp
[
0
]
==
'\0'
)
{
...
...
@@ -84,17 +62,17 @@ CCoord CCoord::Ask( const string& quest )
return
*
this
;
}
string
CCoord
::
str
(
void
)
const
string
CCoord
::
str
()
const
{
return
name
+
(
unit
!=
""
?
(
" ("
+
unit
+
")"
)
:
""
);
}
string
CCoord
::
ps_str
(
void
)
const
// just two blanks instead of one
string
CCoord
::
ps_str
()
const
// just two blanks instead of one
{
return
name
+
(
unit
!=
""
?
(
" ("
+
unit
+
")"
)
:
""
);
}
string
CCoord
::
fstr
(
void
)
const
string
CCoord
::
fstr
()
const
{
return
name
+
"
\t
"
+
unit
;
}
...
...
@@ -136,7 +114,7 @@ int CParam::init_from_a01( const string in )
return
0
;
}
string
CParam
::
str
(
void
)
const
string
CParam
::
str
()
const
{
return
strg
(
val
)
+
string
(
" "
)
+
Co
.
str
();
}
This diff is collapsed.
Click to expand it.
pub/src/coord.h
+
9
−
14
View file @
adfb5980
// This is coord.h
//
// Requires #include <string> "readln.h" "usrinp.h"
class
CCoord
{
public:
public:
string
name
,
unit
;
CCoord
(
void
);
CCoord
(
const
char
*
nin
,
const
char
*
uin
);
CCoord
(
const
string
*
nin
,
const
string
*
uin
);
CCoord
(
const
string
nin
,
const
string
uin
);
inline
CCoord
()
{};
inline
CCoord
(
const
string
_name
,
const
string
_unit
)
:
name
(
_name
),
unit
(
_unit
)
{};
CCoord
Ask
(
const
string
&
quest
,
const
CCoord
&
defval
);
CCoord
Ask
(
const
string
&
quest
);
...
...
@@ -26,21 +21,21 @@ public:
inline
bool
operator
!=
(
const
CCoord
&
Co2
)
const
{
return
!
(
*
this
==
Co2
);
};
private
:
private
:
static
const
char
*
helptext
;
};
inline
string
strg
(
const
CCoord
&
C
)
{
return
C
.
str
();
};
class
CParam
{
public:
public:
CCoord
Co
;
double
val
;
inline
CParam
(
void
)
{
};
inline
CParam
(
void
)
{};
inline
CParam
(
CCoord
Cin
,
double
vin
=
0
)
{
Co
=
Cin
;
val
=
vin
;
};
inline
CParam
(
string
nin
,
string
uin
=
""
,
double
vin
=
0
)
{
Co
=
CCoord
(
nin
,
uin
);
val
=
vin
;
};
inline
CParam
(
string
_name
,
string
_unit
=
""
,
double
vin
=
0
)
{
Co
=
CCoord
(
_name
,
_unit
);
val
=
vin
;
};
string
str
(
void
)
const
;
int
init_from_a01
(
const
string
in
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment