blob: fe83d4e86bc80cced4781c1d7e2d37bb4c9c3873 [file] [log] [blame]
#ifndef _RIVE_LIST_CONSTRAINT_HPP_
#define _RIVE_LIST_CONSTRAINT_HPP_
#include <stdio.h>
namespace rive
{
class ConstrainableList;
class ListConstraint
{
public:
static ListConstraint* from(Component* component);
virtual void constrainList(ConstrainableList* child) {}
};
} // namespace rive
#endif