realm-js/src/js_collection.hpp

36 lines
1.0 KiB
C++
Raw Normal View History

2016-03-28 13:21:36 -07:00
////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 Realm Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////
#pragma once
2016-04-12 14:42:05 -07:00
#include "js_class.hpp"
2016-03-28 13:21:36 -07:00
2016-04-12 14:42:05 -07:00
namespace realm {
namespace js {
// Empty class that merely serves as useful type for now.
class Collection {};
template<typename T>
2016-04-16 16:46:16 -07:00
struct CollectionClass : ClassDefinition<T, Collection> {
2016-04-12 14:42:05 -07:00
std::string const name = "Collection";
};
} // js
} // realm