Git Product home page Git Product logo

crtp's Introduction

CRTP

This is a ridiculously simple library that contains a few macros.

I end up copying them into every new library I made, anyway, so I figured I would just make one library for the sake of consistency.

Consider the following example use case, which creates class templates which follow the chain Base -> Derived1 -> Derived2

/**
 * @brief Base
 */
template<typename DerivedT>
class TestInterface
{
public:
  inline void do_thing() const
  {
    CRTP_INDIRECT_M(do_wrapped_thing)();
  }

  constexpr int do_other_thing(int i)
  {
    return CRTP_INDIRECT_M(do_other_thing)(i);
  }

private:
  IMPLEMENT_CRTP_BASE_CLASS(TestInterface, DerivedT);
};


/**
 * @brief Base -> Derived1
 */
template<typename DerivedT>
class TestWrappedInterface : public TestInterface<TestWrappedInterface<DerivedT>>
{
private:
  void CRTP_OVERRIDE_M(do_wrapped_thing)() const
  {
    CRTP_INDIRECT_M(do_wrapped_thing)();
  }

  constexpr int CRTP_OVERRIDE_M(do_other_thing)(int i)
  {
    return i + i + i;
  }

  IMPLEMENT_CRTP_BASE_CLASS(TestWrappedInterface, DerivedT);
  IMPLEMENT_CRTP_DERIVED_CLASS(TestInterface, TestWrappedInterface);
};


/**
 * @brief Base -> Derived1 -> Derived2
 */
class TestDerived : public TestWrappedInterface<TestDerived>
{
public:
  TestDerived() : TestWrappedInterfaceType{} {};

private:
  void CRTP_OVERRIDE_M(do_wrapped_thing)() const
  {
    // does nothing, but compiles
  }

  IMPLEMENT_CRTP_DERIVED_CLASS(TestWrappedInterface, TestDerived);
};

crtp's People

Watchers

James Cloos avatar Brian Cairl avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.