1 /* -*- c++ -*- ----------------------------------------------------------
2    LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
3    https://www.lammps.org/, Sandia National Laboratories
4    Steve Plimpton, sjplimp@sandia.gov
5 
6    Copyright (2003) Sandia Corporation.  Under the terms of Contract
7    DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
8    certain rights in this software.  This software is distributed under
9    the GNU General Public License.
10 
11    See the README file in the top-level LAMMPS directory.
12 ------------------------------------------------------------------------- */
13 
14 #ifdef COMMAND_CLASS
15 // clang-format off
16 CommandStyle(DEPRECATED,Deprecated);
17 CommandStyle(reset_ids,Deprecated);
18 CommandStyle(kim_init,Deprecated);
19 CommandStyle(kim_interactions,Deprecated);
20 CommandStyle(kim_param,Deprecated);
21 CommandStyle(kim_property,Deprecated);
22 CommandStyle(kim_query,Deprecated);
23 // clang-format on
24 #else
25 
26 #ifndef LMP_DEPRECATED_H
27 #define LMP_DEPRECATED_H
28 
29 #include "command.h"
30 
31 namespace LAMMPS_NS {
32 
33 class Deprecated : public Command {
34  public:
Deprecated(class LAMMPS * lmp)35   Deprecated(class LAMMPS *lmp) : Command(lmp){};
36   void command(int, char **);
37 };
38 
39 }    // namespace LAMMPS_NS
40 
41 #endif
42 #endif
43 
44 /* ERROR/WARNING messages:
45 
46 W: Ignoring unknown or incorrect info command flag
47 
48 Self-explanatory.  An unknown argument was given to the info command.
49 Compare your input with the documentation.
50 
51 E: Unknown name for info package category
52 
53 Self-explanatory.
54 
55 E: Unknown name for info newton category
56 
57 Self-explanatory.
58 
59 E: Unknown name for info pair category
60 
61 Self-explanatory.
62 
63 E: Unknown category for info is_active()
64 
65 Self-explanatory.
66 
67 E: Unknown category for info is_available()
68 
69 Self-explanatory.
70 
71 E: Unknown category for info is_defined()
72 
73 Self-explanatory.
74 
75 */
76