From a0e9065f1f47d41c6f2bd692b5027695db79de25 Mon Sep 17 00:00:00 2001 From: Mark Haines Date: Tue, 3 Mar 2015 11:26:52 +0000 Subject: [PATCH] Rename the ratchet source and include files from axolotl to ratchet --- include/axolotl/{axolotl.hh => ratchet.hh} | 0 src/{axolotl.cpp => ratchet.cpp} | 2 +- tests/{test_axolotl.cpp => test_ratchet.cpp} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename include/axolotl/{axolotl.hh => ratchet.hh} (100%) rename src/{axolotl.cpp => ratchet.cpp} (99%) rename tests/{test_axolotl.cpp => test_ratchet.cpp} (99%) diff --git a/include/axolotl/axolotl.hh b/include/axolotl/ratchet.hh similarity index 100% rename from include/axolotl/axolotl.hh rename to include/axolotl/ratchet.hh diff --git a/src/axolotl.cpp b/src/ratchet.cpp similarity index 99% rename from src/axolotl.cpp rename to src/ratchet.cpp index 0f0d226..72c6e82 100644 --- a/src/axolotl.cpp +++ b/src/ratchet.cpp @@ -12,7 +12,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "axolotl/axolotl.hh" +#include "axolotl/ratchet.hh" #include "axolotl/message.hh" #include "axolotl/memory.hh" diff --git a/tests/test_axolotl.cpp b/tests/test_ratchet.cpp similarity index 99% rename from tests/test_axolotl.cpp rename to tests/test_ratchet.cpp index f268f2a..95391e3 100644 --- a/tests/test_axolotl.cpp +++ b/tests/test_ratchet.cpp @@ -12,7 +12,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "axolotl/axolotl.hh" +#include "axolotl/ratchet.hh" #include "unittest.hh"