dsrc isn't necessary for this repo
[client-tools.git] / src / external / 3rd / library / perforce / include / echoctl.h
blobd30ddebb107fa74ed5f6ed1ebebca3230090339d
1 /*
2 * Copyright 2001 Perforce Software. All rights reserved.
4 * This file is part of Perforce - the FAST SCM System.
5 */
7 /*
8 * NoEcho -- Turn terminal echoing off/on
10 * Declaring a NoEcho object turns off terminal echoing (if possible).
11 * Deleting it turns it back on.
14 struct EchoContext;
16 class NoEcho {
18 public:
19 NoEcho();
20 ~NoEcho();
22 private:
23 EchoContext *context;
25 } ;