summaryrefslogtreecommitdiff
path: root/ACE/netsvcs/clients/Tokens/manual/manual.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/netsvcs/clients/Tokens/manual/manual.cpp')
-rw-r--r--ACE/netsvcs/clients/Tokens/manual/manual.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/netsvcs/clients/Tokens/manual/manual.cpp b/ACE/netsvcs/clients/Tokens/manual/manual.cpp
index 0f204851456..329a40b765e 100644
--- a/ACE/netsvcs/clients/Tokens/manual/manual.cpp
+++ b/ACE/netsvcs/clients/Tokens/manual/manual.cpp
@@ -36,7 +36,7 @@ class STDIN_Token : public ACE_Event_Handler
{
public:
/// Construction.
- STDIN_Token (void);
+ STDIN_Token ();
/// Parse command-line arguments.
int parse_args (int argc, ACE_TCHAR *argv[]);
@@ -54,7 +54,7 @@ public:
private:
/// Display options.
- void display_menu (void);
+ void display_menu ();
/// Get or make a proxy to <token> with a <tid> client id.
ACE_Token_Proxy *get_proxy (const char *tid, const char *token, char type);
@@ -85,7 +85,7 @@ private:
int remote_;
};
-STDIN_Token::STDIN_Token (void)
+STDIN_Token::STDIN_Token ()
: server_host_ (ACE_DEFAULT_SERVER_HOST),
server_port_ (ACE_DEFAULT_SERVER_PORT),
ignore_deadlock_ (0),
@@ -249,7 +249,7 @@ STDIN_Token::handle_input (ACE_HANDLE fd)
}
void
-STDIN_Token::display_menu (void)
+STDIN_Token::display_menu ()
{
ACE_OS::printf ("<tid> <token> <type> <operation>\n");
}