include lindex

This commit is contained in:
Christian Zimmermann 2022-12-20 21:53:59 +01:00
parent d25cbda2fc
commit 8209f14c71
4 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,7 @@
#ifndef __cxz_lindex_cc_h__
#define __cxz_lindex_cc_h__
#include "lindex.h"
namespace CNORXZ
@ -30,3 +33,5 @@ namespace CNORXZ
}
}
#endif

View file

@ -14,8 +14,8 @@ namespace CNORXZ
class LIndex : public Index
{
public:
typedef Index::IB IB;
typedef Index::RangeType RangeType;
typedef typename Index::IB IB;
typedef typename Index::RangeType RangeType;
DEFAULT_MEMBERS(LIndex);
LIndex(const Index& i);

View file

@ -6,4 +6,5 @@
#include "urange.cc.h"
#include "crange.cc.h"
#include "dindex.cc.h"
#include "lindex.cc.h"
#include "index_mul.cc.h"

View file

@ -8,6 +8,7 @@
#include "xindex.h"
#include "yrange.h"
#include "dindex.h"
#include "lindex.h"
#include "index_mul.h"
#include "ranges.cc.h"