source: java/main/src/main/java/com/framsticks/model/BaseNeuro.java @ 78

Last change on this file since 78 was 78, checked in by psniegowski, 11 years ago

Add f0 parsing and f0->Model transformation.

File size: 356 bytes
Line 
1package com.framsticks.model;
2
3/**
4 * Author: Piotr Śniegowski
5 */
6public class BaseNeuro {
7        /** inputCount */
8        public Integer inputCount;
9        public Integer getGetInputCount() { return inputCount; }
10        public void setGetInputCount(Integer getInputCount) { inputCount = getInputCount; }
11
12
13        public void copyFrom(BaseNeuro n) {
14                inputCount = n.inputCount;
15        }
16}
Note: See TracBrowser for help on using the repository browser.