using System;
using System.Collections.Generic;
using System.Text;
namespace Tensorflow
{
public interface IPyClass
{
///
/// Called when the instance is created.
///
///
void __init__(IPyClass self, dynamic args);
void __enter__(IPyClass self);
void __exit__(IPyClass self);
void __del__(IPyClass self);
}
}