Files
lammps/src/fix_deprecated.h
2023-11-30 05:41:05 -05:00

46 lines
1.3 KiB
C++

/* -*- c++ -*- ----------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
https://www.lammps.org/, Sandia National Laboratories
LAMMPS development team: developers@lammps.org
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
#ifdef FIX_CLASS
// clang-format off
// list all deprecated and removed fix styles here
FixStyle(DEPRECATED,FixDeprecated);
FixStyle(ave/spatial,FixDeprecated);
FixStyle(ave/spatial/sphere,FixDeprecated);
FixStyle(lb/pc,FixDeprecated);
FixStyle(lb/rigid/pc/sphere,FixDeprecated);
FixStyle(reax/c/bonds,FixDeprecated);
FixStyle(reax/c/species,FixDeprecated);
// clang-format on
#else
#ifndef LMP_FIX_DEPRECATED_H
#define LMP_FIX_DEPRECATED_H
#include "fix.h"
namespace LAMMPS_NS {
class FixDeprecated : public Fix {
public:
FixDeprecated(class LAMMPS *, int, char **);
int setmask() override { return 0; }
void init() override {}
};
} // namespace LAMMPS_NS
#endif
#endif